home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.3 KB | 46 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWMenus.k
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWMENUS_K
- #define FWMENUS_K
-
- #ifndef FWBLDDEF_H
- #include "FWBldDef.h"
- #endif
-
- //========================================================================================
- // Miscellaneous
- //========================================================================================
-
- #define FW_kNoKeyEquivalent 0
- #define FW_kNoCommand -1
- #define FW_kSeparatorCommand 0
- #define FW_kMenuBarResourceType 'FWmb'
-
- #ifdef FW_BUILD_WIN
- #define FW_kFirstUserCommandID 1501
- #endif
-
- #ifdef FW_BUILD_MAC
- #define FW_kFirstUserCommandID 20001
- #endif
-
- //========================================================================================
- // Constants for Framework Commands
- //========================================================================================
-
- #define FW_kDragCommand 101
- #define FW_kDropCommand 102
- #define FW_kCreateLinkCommand 103
- #define FW_kCreateLinkSourceCommand 104
- #define FW_kPasteWithLinkCommand 105
- #define FW_kBreakLinkCommand 106
- #define FW_kBreakLinkSourceCommand 107
-
- #endif